home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 August: Tool Chest / Dev.CD Aug 95 TC / Dev.CD Aug 95 TC.toast / New System Software Extensions / QuickDraw™ GX 1.1.2 / Programming Stuff / Sample Code / Printing Samples / Applications… / QuickDraw GX Aware Sample ƒ / Simple Sample GX ƒ / Prefix.mw68k.h < prev    next >
Encoding:
Text File  |  1995-04-10  |  572 b   |  17 lines  |  [TEXT/MMCC]

  1.  
  2. // The following two typedef's are to work around a bug in the ETO #15
  3. // Universal headers -- the headers only typedef float_t and double_t
  4. // for "applec" and "powerc".  When this is eventually fixed, these
  5. // lines generate "redefined type" errors.
  6.  
  7. #ifndef powerc
  8.     typedef long double float_t;
  9.     typedef long double double_t;
  10.  
  11.     // The following is required if using Metrowerks 68K (CW4).
  12.     // Otherwise, MetroWerks 68K expects (and uses what it thinks are)
  13.     // A0 result values instead of D0 ones.
  14.  
  15.     #pragma pointers_in_D0        //    Required for c-style toolbox glue.
  16. #endif
  17.